github.com/klauspost/compress/zstd.cState.state (field)
19 uses
github.com/klauspost/compress/zstd (current package)
blockenc.go#L753: println("Encoded seq", seq, s, "codes:", s.llCode, s.mlCode, s.ofCode, "states:", ll.state, ml.state, of.state, "bits:", llB, mlB, ofB)
blockenc.go#L763: nbBitsOut := (uint32(of.state) + ofB.deltaNbBits) >> 16
blockenc.go#L764: dstState := int32(of.state>>(nbBitsOut&15)) + int32(ofB.deltaFindState)
blockenc.go#L765: wr.addBits16NC(of.state, uint8(nbBitsOut))
blockenc.go#L766: of.state = of.stateTable[dstState]
blockenc.go#L775: nbBitsOut = (uint32(ml.state) + mlB.deltaNbBits) >> 16
blockenc.go#L776: dstState = int32(ml.state>>(nbBitsOut&15)) + int32(mlB.deltaFindState)
blockenc.go#L777: wr.addBits16NC(ml.state, uint8(nbBitsOut))
blockenc.go#L778: ml.state = ml.stateTable[dstState]
blockenc.go#L786: nbBitsOut = (uint32(ll.state) + llB.deltaNbBits) >> 16
blockenc.go#L787: dstState = int32(ll.state>>(nbBitsOut&15)) + int32(llB.deltaFindState)
blockenc.go#L788: wr.addBits16NC(ll.state, uint8(nbBitsOut))
blockenc.go#L789: ll.state = ll.stateTable[dstState]
fse_encoder.go#L678: state uint16
fse_encoder.go#L688: c.state = 0
fse_encoder.go#L694: c.state = c.stateTable[lu]
fse_encoder.go#L700: c.bw.addBits16NC(c.state, tableLog)
 |
The pages are generated with Golds v0.8.4. (GOOS=linux GOARCH=amd64)
Golds is a Go 101 project developed by Tapir Liu.
PR and bug reports are welcome and can be submitted to the issue list.
Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |